for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export class Job {
constructor(data) {
this.data = data;
this._logs = [];
}
log(string) {
this._logs.push(string);